home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
subsystems.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
830b
|
25 lines
/* RCSVER $Id: subsystems.sql,v 1.3 1999-03-19 09:50:00-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: subsystems.sql
* Date: 12/28/1998
* memo: Randy Wood
* Description: Create the subsystems.table. This table contains definitions
* of all valid subsystems.
* Changes:
************************************************************************* */
/* SUBSYSTEMS
1 Central Host Computer
2 Moneyroom Computer
3 Garage Revenue Station
4 Farebox
*/
CREATE TABLE subsystems
(
id NUMBER(38), /* ID of this subsystem */
descr VARCHAR2(30), /* Description of subsystem */
useCharPW NUMBER(1), /* Use a character user ID? */
CONSTRAINT pk_subsystems PRIMARY KEY (id)
);